This repository was archived by the owner on Jul 10, 2026. It is now read-only.
Release/10.3.1#3343
Merged
Merged
Conversation
Closes #3309. Each provider in `get_external_ip` was wrapped in `except ExternalIPNotFound`, but none of the underlying calls (`requests.get`, `ip_to_int`, `os.popen`+`readline`, `urllib.request.urlopen`, `json.loads`, wikipedia header lookup) ever raise `ExternalIPNotFound`. As a result the first failing provider crashed the entire function instead of falling through to the next one. Catch the exceptions that can actually occur: * RequestException — for `requests.get` failures * AddrFormatError — for malformed IPs * OSError — for `os.popen`/curl failures * URLError — for urllib failures * ValueError — for json + int parse failures * KeyError — for the wikipedia header * AssertionError — for the isinstance guards * ExternalIPNotFound — kept for backward compat Three regression tests cover: AWS connection error → curl fallthrough, malformed AWS IP → curl fallthrough, and all-providers-exhausted → ExternalIPNotFound.
…le-asi Bumps cyscale and ASI
…ing-ip-fallback-chain fix(networking): catch real exceptions in get_external_ip fallback chain
…cves Updates packages with CVEs
…io-1.0 Should fix the change to pytest-asyncio 1.3
Bumping deps versions
* add error link * Update test__init__.py
Changelog/10.3.1
|
Bittensor SDK virtual environment sizes by Python version: |
1 similar comment
|
Bittensor SDK virtual environment sizes by Python version: |
thewhaleking
approved these changes
May 6, 2026
ibraheem-abe
approved these changes
May 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
10.3.1 /2026-05-06
What's Changed
New Contributors
Full Changelog: v10.3.0...v10.3.1